hvmloader: reduce iasl verbosity
authorKeir Fraser <keir@xen.org>
Sun, 24 Oct 2010 12:18:26 +0000 (13:18 +0100)
committerKeir Fraser <keir@xen.org>
Sun, 24 Oct 2010 12:18:26 +0000 (13:18 +0100)
I don't think anyone really needs iasl's banner displayed during the
build process.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
tools/firmware/hvmloader/acpi/Makefile

index 3fdb7c27e158213abfcb96a7ef43f23532af39b5..f8ded8938b1df9a4fd52448fc2de824100a66b6a 100644 (file)
@@ -27,7 +27,7 @@ vpath iasl $(PATH)
 all: acpi.a
 
 ssdt_pm.h ssdt_tpm.h: %.h: %.asl iasl
-       iasl -p $* -tc $<
+       iasl -vs -p $* -tc $<
        sed -e 's/AmlCode/$*/g' $*.hex >$@
        rm -f $*.hex $*.aml
 
@@ -36,7 +36,7 @@ dsdt_15cpu.c dsdt_anycpu.c: %.c: dsdt.asl mk_dsdt.c iasl
        $(HOSTCC) $(HOSTCFLAGS) $(CFLAGS_include) -o mk_$* mk_dsdt.c
        awk 'NR > 1 {print s} {s=$$0}' $< >$*.asl
        ./mk_$* >>$*.asl
-       iasl -p $* -tc $*.asl
+       iasl -vs -p $* -tc $*.asl
        sed -e 's/AmlCode/$*/g' $*.hex >$@
        echo "int $*_len=sizeof($*);" >>$@
        rm -f $*.hex $*.aml $*.asl mk_$*